projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cf1175d
)
(where-is): Catch errors in indirect-function.
author
Richard M. Stallman
<rms@gnu.org>
Mon, 13 Jan 2003 08:04:46 +0000
(08:04 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Mon, 13 Jan 2003 08:04:46 +0000
(08:04 +0000)
lisp/help.el
patch
|
blob
|
history
diff --git
a/lisp/help.el
b/lisp/help.el
index 4002a0aee1646cd1f3b030fffa0cc9fbf9514fb1..8d0be9b63cc69223b0e01d7b970e2e227cc5823f 100644
(file)
--- a/
lisp/help.el
+++ b/
lisp/help.el
@@
-425,7
+425,9
@@
If INSERT (the prefix arg) is non-nil, insert the message in the buffer."
(mapatoms (lambda (symbol)
(and (fboundp symbol)
(not (eq symbol definition))
- (eq func (indirect-function symbol))
+ (eq func (condition-case ()
+ (indirect-function symbol)
+ (error symbol)))
(push symbol defs))))
(princ (mapconcat
#'(lambda (symbol)